home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Delphi Magazine Collection 2001
/
Delphi Magazine Collection 20001 (2001).iso
/
DISKS
/
Issue62
/
WStrings
/
widereg.pas
< prev
next >
Wrap
Pascal/Delphi Source File
|
2000-08-10
|
368b
|
20 lines
unit WideReg;
interface
// Register the TWideLabel component and WideString property editor.
procedure Register;
implementation
uses Classes, DsgnIntf, WideLabel, WideProp;
procedure Register;
begin
RegisterPropertyEditor(TypeInfo(WideString), TPersistent, '', TWideStringProperty);
RegisterComponents('Tempest', [TWideLabel]);
end;
end.